home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 11_Cabinet / PROGCTRL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.6 KB  |  67 lines

  1. // ProgCtrl.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CProgCtrlPage dialog
  16. #ifndef INC_PROGCTRL_H
  17. #define INC_PROGCTRL_H
  18.  
  19. class CProgCtrlPage : public CPropertyPage
  20. {
  21.     DECLARE_DYNCREATE(CProgCtrlPage)
  22.  
  23. // Construction
  24. public:
  25.     CProgCtrlPage();
  26.     ~CProgCtrlPage();
  27.  
  28. // Dialog Data
  29.     //{{AFX_DATA(CProgCtrlPage)
  30.     enum { IDD = IDD_PROGCTRL };
  31.     int     m_iDelta;
  32.     UINT    m_uiStep;
  33.     UINT    m_uiRangeFrom;
  34.     UINT    m_uiPos;
  35.     UINT    m_uiRangeTo;
  36.     BOOL    m_bVertical;
  37.     BOOL    m_bSmooth;
  38.     //}}AFX_DATA
  39.     CProgressCtrl   m_Progress;
  40.  
  41. // Overrides
  42.     // ClassWizard generate virtual function overrides
  43.     //{{AFX_VIRTUAL(CProgCtrlPage)
  44.     protected:
  45.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  46.     virtual BOOL OnInitDialog();
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. protected:
  51.  
  52.     // Generated message map functions
  53.     //{{AFX_MSG(CProgCtrlPage)
  54.     afx_msg void OnProgressStepit();
  55.     afx_msg void OnSetpos();
  56.     afx_msg void OnProgressSetdelta();
  57.     afx_msg void OnFrom();
  58.     afx_msg void OnTo();
  59.     afx_msg void OnStep();
  60.     afx_msg void OnStyleChange();
  61.     //}}AFX_MSG
  62.     DECLARE_MESSAGE_MAP()
  63.  
  64. };
  65.  
  66. #endif
  67.